When I try to display the html file HostingEnvironment.MapPath I got the error. There was a problem with my code and got
an exception message as,
An exception of type 'System.ArgumentException' occurred in System.Web.dll but was not handled in user code
Additional information: The relative virtual path '../Data/page.html' is not allowed here.
Solution:
Instead of passing the path '../Data/page.html' we should use path like this,
System.Web.Hosting.HostingEnvironment.MapPath("~/Data/" + md)
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article